#'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"#
#~		CC6 LIB Project Makefile	~#
#'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"'"~.,.~"#

# This is a generic makefile for a CC6 3PARTY Library (LIB).
# Development should: 
# implement CC6_PLATFORM.mak according to the current platforn & location
# implement CC6_PRJ_CONF.mak according to the current project
# Users will:
# run GNU compliant make on this file with standard options - all,clean,rebuild.


#refer control to this project target
CC6_PRJ_LIB_first: CC6_EXTAPP_LIB_main
	

#include specific location & platform selections
include ../CC6_PLATFORM.inc

#include the specific project configuration
include ../../CC6_EXTAPP_PRJ_CONF.inc

#include the generic LIB project
include $(MF_PATH)CC6_EXTAPP_LIB.mak

all build: CC6_PRJ_LIB_first
	
rebuild: CC6_EXTAPP_LIB_rebuild
	
clean: CC6_EXTAPP_LIB_clean
	
